home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Plus SuperCD 60
/
supercd60_2.iso
/
BlitzBasic
/
Blitz2DPCP
/
data1.cab
/
Support
/
help
/
beginners
/
tutorial
/
if then1.bb
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2001-11-21
|
312 b
|
11 lines
.start
question$ = Input ("Shall I tell you the meaning of life yes/no? ")
If question$ = "no" Then Print "Alright, Then I won't":Goto Leave
If question$ = "yes" Then Print "42":Goto Leave
If question$ <> "yes" Or "no" Then Goto start
End
.Leave
Print "Press ESC to Exit"
Repeat
VWait
Until KeyHit(1)